home *** CD-ROM | disk | FTP | other *** search
Text File | 2003-03-09 | 1.0 KB | 40 lines | [TEXT/????] |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
- <title>{$_SERVICE.locale.title}</title>
- { include file=$_SERVER.templates.header }
- </head>
- <body>
-
- { include file=$_SERVER.templates.navbar }
-
- <div id="content">
-
- { include file=$_SERVER.templates.service }
-
- <form method="post" action="{$_SERVICE.url}.process">
- <div class="center">
- <p>
- <label for="the_app">{$_SERVICE.locale.label}</label>
- <select name="the_app">
- {section name=apps loop=$_SERVICE.response.apps}
- {if $_SERVICE.response.current_app == $_SERVICE.response.apps[apps]}
- <option selected="selected">{$_SERVICE.response.apps[apps]}</option>
- {else}
- <option>{$_SERVICE.response.apps[apps]}</option>
- {/if}
- {/section}
- </select>
- </p>
- <p>
- <input type="submit" value="{$_SERVICE.locale.go}" />
- </p>
- </div>
- </div>
-
- { include file=$_SERVER.templates.footer }
-
- </body>
- </html>